home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / DEMO51 / ASYN8051.C next >
C/C++ Source or Header  |  1997-01-12  |  218b  |  15 lines

  1. #include <stdio.h>
  2.  
  3. static char msg[128];    /* message to send */
  4.  
  5. /* xmitter task */
  6. void task xmitter(256)
  7. {
  8.     while (1) {
  9.         /* get message and send over serial port */
  10.         GetMsg(msg);
  11.         puts(msg);
  12.         }    
  13. }
  14.  
  15.